From b5a390058834a2100eb48d55be7b5828f3da9b6b Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Sun, 21 Sep 2014 16:29:48 -0400 Subject: [PATCH] check-icon-theme: Print the name of the icon-theme --- testsuite/gtk/check-icon-names.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/testsuite/gtk/check-icon-names.c b/testsuite/gtk/check-icon-names.c index 158ffd259f..3916c81688 100644 --- a/testsuite/gtk/check-icon-names.c +++ b/testsuite/gtk/check-icon-names.c @@ -164,9 +164,14 @@ main (int argc, char *argv[]) { guint i; char *test_name; + char *theme; gtk_test_init (&argc, &argv); + g_object_get (gtk_settings_get_default (), "gtk-icon-theme-name", &theme, NULL); + g_test_message ("Testing icon theme: %s", theme); + g_free (theme); + for (i = 0; i < G_N_ELEMENTS (icon_names); i++) { test_name = g_strdup_printf ("/check-icon-names/%s", icon_names[i]); -- 2.30.2